home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / ucfq < prev    next >
Text File  |  2008-05-30  |  19KB  |  848 lines

  1. #!/usr/bin/perl
  2. #                              -*- Mode: Cperl -*- 
  3. # ucfq --- 
  4. # Author           : Manoj Srivastava ( srivasta@glaurung.internal.golden-gryphon.com ) 
  5. # Created On       : Wed Apr 12 14:51:16 2006
  6. # Created On Node  : glaurung.internal.golden-gryphon.com
  7. # Last Modified By : Manoj Srivastava
  8. # Last Modified On : Fri Apr 14 19:30:45 2006
  9. # Last Machine Used: glaurung.internal.golden-gryphon.com
  10. # Update Count     : 81
  11. # Status           : Unknown, Use with caution!
  12. # HISTORY          : 
  13. # Description      : 
  14. # arch-tag: 1390e09f-ee31-4d7f-a968-bd539ea061a0
  15. #
  16. =head1 NAME
  17.  
  18. ucfq - query ucf registry and hashfile about configuration file details.
  19.  
  20. =cut
  21.  
  22. use strict;
  23.  
  24.  
  25. package ucf;
  26.  
  27. use strict;
  28. use Getopt::Long;
  29.  
  30. # set the version and revision
  31. ($main::MYNAME     = $main::0) =~ s|.*/||;
  32. $main::Author      = "Manoj Srivastava";
  33. $main::AuthorMail  = "srivasta\@debian.org";
  34.  
  35. =head1 SYNOPSIS
  36.  
  37.  usage: ucfq [options] (file|package)[file|package  ...]
  38.  
  39. =cut
  40.  
  41.  
  42. {  # scope for ultra-private meta-object for class attributes
  43.  
  44.   my %Ucf = 
  45.     (
  46.      Optdesc  => 
  47.      {
  48.       'help|h'         => sub {print ucf->Usage();     exit 0;},
  49.       'with-colons|w!' => sub {$::ConfOpts{"Colons"}= "$_[1]";},
  50.       'state-dir=s'    => sub {$::ConfOpts{"StateDir"}= "$_[1]";},
  51.       'debug|d'        => sub {$::ConfOpts{"DEBUG"}+= "$_[1]";},
  52.       'verbose|v'      => sub {$::ConfOpts{"VERBOSE"}+= "$_[1]";}
  53.      },
  54.      Usage => qq(Usage: $main::MYNAME [options]
  55. Author: $main::Author <$main::AuthorMail>
  56.   where options are:
  57.  --help                This message.
  58.  --debug               Turn on debugging mode.
  59.  --verbose             Make the script more verbose.
  60.  --with-colons         A compact, machine readable version of the output.
  61.  --state-dir </path/>  Set the state directory to /path/ instead of the
  62.                        default /var/lib/ucf.
  63.  
  64. ),
  65.      Defaults => 
  66.      {
  67.       "Colons"   => 0,
  68.       "DEBUG"    => 0,
  69.       "VERBOSE"  => 0,
  70.       "StateDir" => '/var/lib/ucf'
  71.      }
  72.     );
  73.   # tri-natured: function, class method, or object method
  74.   sub _classobj {
  75.     my $obclass = shift || __PACKAGE__;
  76.     my $class   = ref($obclass) || $obclass;
  77.     no strict "refs";   # to convert sym ref to real one
  78.     return \%$class;
  79.   }
  80.  
  81.   for my $datum (keys %Ucf ) {
  82.     no strict "refs";
  83.     *$datum = sub {
  84.       use strict "refs";
  85.       my ($self, $newvalue) = @_;
  86.       $Ucf{$datum} = $newvalue if @_ > 1;
  87.       return $Ucf{$datum};
  88.     }
  89.   }
  90. }
  91.  
  92. =head1 OPTIONS
  93.  
  94. =over 3
  95.  
  96. =item B<--help> B<h> Print out a usage message.
  97.  
  98. =item B<--debug> B<-d> Turn on debugging mode.
  99.  
  100. =item B<--verbose> B<-v> Make the script more verbose..
  101.  
  102. =item B<--with-colons> B<-w>
  103.  
  104. =over 2
  105.  
  106. Normally, the script presents the information in a human readable
  107. tabular format, but that may be harder for a machine to parse. With
  108. this option, the output is a compact, colon separated line, with no
  109. dividers, headers, or footer.
  110.  
  111. =back
  112.  
  113. =item B<--state-dr> dir
  114.  
  115. =over 2
  116.  
  117. Set the state directory to C</path/to/dir> instead of the default
  118. C</var/lib/ucf>.  Used mostly for testing.
  119.  
  120. =back
  121.  
  122. =back
  123.  
  124. =cut
  125.  
  126.  
  127. =head1 DESCRIPTION
  128.  
  129.  
  130. This script takes a set of arguments, each of which is a package or a
  131. path to a configuration file, and outputs the associated package, if
  132. any, if the file exists on disk, and whether it has been modfied by te
  133. user.  The output is either a human readable tabular form, or a
  134. compact colon-separated machine friendly format.
  135.  
  136. This script can potentially be used in package C<postinst> scripts
  137. during purge to query the system for configuration files that may
  138. still exist on the system, and whether these files have been locally
  139. modified by the user -- assuming that the package registered all the
  140. configuration files with B<ucf> using C<ucfr>.
  141.  
  142. =cut
  143.  
  144.  
  145.  
  146.  
  147. =head1 INTERNALS
  148.  
  149. =head2 Class Methods
  150.  
  151. All class methods mediate access to class variables.  All class
  152. methods can be invoked with zero or one parameters. When invoked with
  153. the optional parameter, the class method sets the value of the
  154. underlying class data.  In either case, the value of the underlying
  155. variable is returned.
  156.  
  157. =cut
  158.  
  159. =head1 Class ucf
  160.  
  161. This is a combination view and controller class that mediates between
  162. the user and the internal model classes.
  163.  
  164.  
  165. =head2 new
  166.  
  167. This is the constructor for the class. It takes a number of optional
  168. parameters. If the parameter B<Colons> is present, then the output
  169. will be compact. The parameters B<DEBUG> and B<VERBOSE> turn on
  170. additional diagnostics from the script.
  171.  
  172. =cut
  173.  
  174. sub new {
  175.   my $this = shift;
  176.   my %params = @_;
  177.   my $class = ref($this) || $this;
  178.   my $self = {};
  179.  
  180.   bless $self => $class;
  181.  
  182.   # validate and sanitize the settings
  183.   $self->validate(%params);
  184.   
  185.   return $self;
  186. }
  187.  
  188. =head2 validate
  189.  
  190. This routine is responsible for ensuring that the parameters passed in
  191. (presumably from the command line) are given preference. 
  192.  
  193. =cut
  194.  
  195. sub validate{
  196.   my $this     = shift;
  197.   my %params   = @_;
  198.   my $defaults = $this->Defaults();
  199.  
  200.  
  201.   # Make sure runtime options override what we get from the config file
  202.   for my $option (keys %params) {
  203.     $this->{Con_Ref}->{"$option"} = $params{"$option"};
  204.   }
  205.  
  206.   # Ensure that if default parameters have not been set on the comman
  207.   # line on in the configuration file, if any, we use the built in
  208.   # defaults.
  209.   for my $default (keys %$defaults) {
  210.     if (! defined $this->{Con_Ref}->{"$default"}) {
  211.       $this->{Con_Ref}->{"$default"} = $defaults->{"$default"};
  212.     }
  213.   }
  214. }
  215.  
  216. =head2 get_config_ref
  217.  
  218. This routine returns a reference to the configuration hash
  219.  
  220. =cut
  221.  
  222. sub get_config_ref {
  223.  
  224.   my $this     = shift;
  225.   return $this->{Con_Ref};
  226. }
  227.  
  228. =head2 dump_config 
  229.  
  230. This routine returns a C<Data::Dumper> for debugging purposes
  231.  
  232. =cut
  233.  
  234. sub dump_config {
  235.   my $this     = shift;
  236.   for (keys %{$this->{Con_Ref}}) {
  237.     print  "$_ = [${$this->{Con_Ref}}{$_}]\n"
  238.   }
  239. }
  240.  
  241. =head2 process
  242.  
  243. This routine is the work horse routine -- it parses the command line
  244. arguments, and queries the on disk databases, determines of the files
  245. exist, and have been modified.
  246.  
  247. =cut
  248.  
  249.  
  250. sub process {
  251.   my $this      = shift;
  252.  
  253. # Step 1: Process all arguments in sequence.
  254. # Step 2: determine if the arument given is a package name (no / in
  255. #         arg)
  256.  
  257.   %{$this->{packages}}    = map { +"$_" => 1} grep {! m,/,} @ARGV;
  258.   %{$this->{configs}}     = map { +"$_" => 1} grep {  m,/,} @ARGV;
  259.   $this->{pkg_list}       = object_list->new;
  260.   $this->{file_list}      = object_list->new;
  261.   $this->{registry_proxy} = 
  262.     registry->new("StateDir" => $this->{Con_Ref}->{StateDir});
  263.   $this->{hashfile_proxy} = 
  264.     hashfile->new("StateDir" => $this->{Con_Ref}->{StateDir});
  265.  
  266.   for (keys %{$this->{packages}} ) {
  267.     my $package = pkg->new('Name' => "$_");
  268.     $this->{pkg_list}->element($_, $package);
  269.   }
  270.   for (keys %{$this->{configs}}) {
  271.     warn "Need a fully qualified path name for config file \"$_\"\n"
  272.       unless m,^/,;
  273.     # Don't die for etch
  274.     exit 0 unless m,^/,;
  275.     my $file = conffile->new('Name' => "$_");
  276.     $this->{file_list}->element($_, $file);
  277.   }
  278. # Step 3: If so, gather all files associated with the package
  279.   for my $package ($this->{pkg_list}->list) {
  280.     my $pkg_files = $this->{registry_proxy}->list_files($package);
  281.     for my $file (@$pkg_files) {
  282.       if (! defined $this->{file_list}->element($file)) {
  283.         my $ret = conffile->new('Name' => "$file");
  284.         $this->{file_list}->element($file, $ret);
  285.       }
  286.       $this->{file_list}->element($file)->conffile_package($package);
  287.     }
  288.   }
  289. # Step 4: for all configuration files, determine package (unless
  290. #         already determined), if any
  291. # Step 5: For each configuration file, check if it exists
  292. # Step 6: For each existing file, see if it has been changed
  293.  
  294.   for my $file ($this->{file_list}->list) {
  295.     $this->{file_list}->element($file)->conffile_hash($file, $this->{hashfile_proxy}->hash($file));
  296.     if (! defined $this->{file_list}->element($file)->conffile_package) {
  297.       $this->{file_list}->element($file)->conffile_package($this->{registry_proxy}->find_pkg($file));
  298.     }
  299.   }
  300. }
  301.  
  302. =head2 report
  303.  
  304. This routine generates a nicely formatted report based on the
  305. information gathered during the processing. There are two kinds of
  306. reports, the first being a user friendly tabular form, the second
  307. (turned on by the C<-w> option) a easily parseable colon separated
  308. report.
  309.  
  310. =cut
  311.  
  312.  
  313. our ($out_pkg, $out_file, $there, $mod);
  314.  
  315. format STDOUT_TOP =
  316. Configuration file                            Package             Exists Changed
  317. .
  318.  
  319. format STDOUT =
  320. @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<< @|||   @|||
  321. $out_file,                                    $out_pkg,           $there,$mod
  322. .
  323.  
  324. sub report {
  325.   my $this      = shift;
  326.   for my $file (sort $this->{file_list}->list) {
  327.     ($out_pkg, $out_file, $there, $mod) =
  328.       $this->{file_list}->element($file)->conffile_report;
  329.     if ($this->{Con_Ref}->{Colons}) {
  330.       print "$out_file:$out_pkg:$there:$mod\n";
  331.     }
  332.     else {
  333.       write;
  334.     }
  335.   }
  336. }
  337.  
  338. =head1 Class registry
  339.  
  340. This moel class encapsulates the package-configuration file
  341. associations registry.  It parses the data in the registry, and
  342. provides methods to query the registry based either on package name,
  343. or the full path of the configuration file.
  344.  
  345. =cut
  346.  
  347. package registry;
  348. use strict;
  349.  
  350. =head2 new
  351.  
  352. This is the constructor for the class.  It takes a required parameter
  353. B<StateDir>, and based on that, proceeds toparse the registry and
  354. populate internal data structures.
  355.  
  356. =cut
  357.  
  358. sub new {
  359.   my $this = shift;
  360.   my %params = @_;
  361.   my $class = ref($this) || $this;
  362.   my $self = {};
  363.  
  364.   die "Missing required parameter StateDir"
  365.     unless $params{StateDir};
  366.  
  367.   if (-e "$params{StateDir}/registry") {
  368.     if (! -r "$params{StateDir}/registry") {
  369.       die "Can't read registry file $params{StateDir}/registry:$!";
  370.     }
  371.     open (REG, "$params{StateDir}/registry") || 
  372.       die "Can't read registry file $params{StateDir}/registry:$!";
  373.     while (<REG>) {
  374.       chomp;
  375.       my ($pkg, $file) = m/^(\S+)\s+(\S+)$/;
  376.       $self->{Packages}->{$file} = $pkg;
  377.       if (exists $self->{List}->{$pkg}) {
  378.         push @{$self->{List}->{$pkg}}, $file;
  379.       }
  380.       else {
  381.         $self->{List}->{$pkg} = [ $file ];
  382.       }
  383.     }
  384.   }
  385.  
  386.   bless $self => $class;
  387.  
  388.   return $self;
  389. }
  390.  
  391. =head2 list_files
  392.  
  393. This routine queries the registry and lists all configuration files
  394. associated with the given package.  Takes the package name as a
  395. required parameter.
  396.  
  397. =cut
  398.  
  399. sub list_files {
  400.   my $this      = shift;
  401.   my $pkg       = shift;
  402.  
  403.   if (exists $this->{List}->{$pkg}) {
  404.     return [ @{$this->{List}->{$pkg}} ];
  405.   }
  406.   else {
  407.     return [];
  408.   }
  409. }
  410.  
  411.  
  412. =head2 find_pkg
  413.  
  414. This routine queries the registry for the package associated with the
  415. given file.  Takes the path of the configuration file as a required
  416. parameter.
  417.  
  418. =cut
  419.  
  420. sub find_pkg {
  421.   my $this      = shift;
  422.   my $file      = shift;
  423.  
  424.   if (exists $this->{Packages}->{$file}) {
  425.     return $this->{Packages}->{$file};
  426.   }
  427.   else {
  428.     return undef;
  429.   }
  430. }
  431.  
  432. =head1 Class hashfile
  433.  
  434. This moel class encapsulates the configuration file hash database.  It
  435. parses the data in the database, and provides methods to query the
  436. hash of the configuration file.
  437.  
  438. =cut
  439.  
  440. package hashfile;
  441. use strict;
  442.  
  443. sub new {
  444.   my $this = shift;
  445.   my %params = @_;
  446.   my $class = ref($this) || $this;
  447.   my $self = {};
  448.  
  449.   die "Missing required parameter StateDir"
  450.     unless $params{StateDir};
  451.  
  452.  
  453.   if (-e "$params{StateDir}/hashfile") {
  454.     if (! -r "$params{StateDir}/hashfile") {
  455.       die "Can't read registry file $params{StateDir}/hashfile:$!";
  456.     }
  457.     open (HASH, "$params{StateDir}/hashfile") || 
  458.       die "Can't read registry file $params{StateDir}/hashfile:$!";
  459.     while (<HASH>) {
  460.       chomp;
  461.       my ($hash, $file) = m/^(\S+)\s+(\S+)$/;
  462.       $self->{$file} = $hash
  463.     }
  464.   }
  465.  
  466.   bless $self => $class;
  467.  
  468.   return $self;
  469. }
  470.  
  471.  
  472. =head2 hash
  473.  
  474. This routine queries the database for the hash associated with the
  475. developers version of the given file.  Takes the path of the
  476. configuration file as a required parameter.
  477.  
  478. =cut
  479.  
  480.  
  481. sub hash {
  482.   my $this      = shift;
  483.   my $file      = shift;
  484.   my $value     = shift;
  485.  
  486.   if ($value) {
  487.     $this->{$file} = $value;
  488.   }
  489.   return $this->{$file};
  490. }
  491.  
  492. =head1 class conffile
  493.  
  494. This is the encapsulation of a configuration file metadata.
  495.  
  496. =cut
  497.  
  498.  
  499.  
  500. package conffile;
  501. use strict;
  502.  
  503.  
  504. =head2 new
  505.  
  506. This is the constructor for the class. It takes a number of optional
  507. parameters. If the parameter B<Colons> is present, then the output
  508. will be compact. The parameters B<DEBUG> and B<VERBOSE> turn on
  509. additional diagnostics from the script.
  510.  
  511. =cut
  512.  
  513. sub new {
  514.   my $this = shift;
  515.   my %params = @_;
  516.   my $class = ref($this) || $this;
  517.   my $self = {};
  518.  
  519.   die "Missing required parameter Name"
  520.     unless $params{Name};
  521.   $self->{Name}    = $params{Name};
  522.   $self->{Package} = $params{Package}
  523.     if $params{Package};
  524.   $self->{Exists}  = 'Yes' if -e $self->{Name};
  525.  
  526.   bless $self => $class;
  527.  
  528.   return $self;
  529. }
  530.  
  531.  
  532. =head2 conffile_package
  533.  
  534. This routine is the accessor method of the internal attribute that
  535. holds package name associated with the file.  If an optional C<value>
  536. is present, updates the value of the attribute.
  537.  
  538. =cut
  539.  
  540. sub conffile_package {
  541.   my $this      = shift;
  542.   my $value     = shift;
  543.  
  544.   if ($value ) {
  545.     $this->{Package} = $value;
  546.   }
  547.   if (exists $this->{Package}) {
  548.     return $this->{Package};
  549.   }
  550.   else {
  551.     return undef;
  552.   }
  553. }
  554.  
  555. =head2 conffile_exists
  556.  
  557. This routine is the accessor method of the internal attribute that
  558. holds the information whether the file exists on disk or not.
  559.  
  560. =cut
  561.  
  562. sub conffile_exists {
  563.   my $this      = shift;
  564.   my $name      = shift;
  565.   my $value     = shift;
  566.  
  567.   die "Missing required parameter Name"
  568.     unless $name;
  569.   if (exists $this->{Exists}) {
  570.     return $this->{Exists};
  571.   }
  572.   else {
  573.     return undef;
  574.   }
  575. }
  576.  
  577. =head2 conffile_modified
  578.  
  579. This routine is the accessor method of the internal attribute that
  580. holds the information whether the file exists on disk or not.  If an
  581. optional C<value> is present, updates the value of the attribute.
  582.  
  583. =cut
  584.  
  585. sub conffile_modified {
  586.   my $this      = shift;
  587.   my $name      = shift;
  588.   my $value     = shift;
  589.  
  590.   die "Missing required parameter Name"
  591.     unless $name;
  592.   if ($value ) {
  593.     $this->{Modified} = $value;
  594.   }
  595.   if (exists $this->{Modified}) {
  596.     return $this->{Modified};
  597.   }
  598.   else {
  599.     return undef;
  600.   }
  601. }
  602.  
  603. =head2 conffile_hash
  604.  
  605. This routine is the accessor method of the internal attribute that
  606. holds the hash for the developers version of the file.  If an optional
  607. C<value> is present, updates the value of the attribute.  It also
  608. notes whether or not the file is modified from the developers version.
  609.  
  610. =cut
  611.  
  612. sub conffile_hash {
  613.   my $this      = shift;
  614.   my $name      = shift;
  615.   my $value     = shift;
  616.  
  617.   die "Missing required parameter Name"
  618.     unless $name;
  619.   if ($value ) {
  620.     $this->{Hash} = $value;
  621.     if (-e "$name") {
  622.       if (-x "/usr/bin/md5sum") {
  623.         open (NEWHASH, "/usr/bin/md5sum $name |") || 
  624.           die "Could not run md5sum: $!";
  625.         while (<NEWHASH>) {
  626.           chomp;
  627.           my ($hash, $dummy) = m/^(\S+)\s+(\S+)$/;
  628.           if ("$hash" ne "$value") {
  629.             $this->{Modified} = 'Yes';
  630.           }
  631.           else {
  632.             $this->{Modified} = 'No';
  633.           }
  634.         }
  635.         close NEWHASH;
  636.       }
  637.       else {
  638.         die "Could not find /usr/bin/md5sum .\n";
  639.       }
  640.     }
  641.   }
  642.   if (exists $this->{Hash}) {
  643.     return $this->{Hash};
  644.   }
  645.   else {
  646.     return undef;
  647.   }
  648. }
  649.  
  650. sub conffile_report {
  651.   my $this      = shift;
  652.   return $this->{Package} ? $this->{Package} : "",
  653.     $this->{Name}, $this->{Exists} ? $this->{Exists} : "",
  654.       $this->{Modified}? $this->{Modified} : "";
  655. }
  656.  
  657.  
  658. =head1 CLASS PKG
  659.  
  660. This is an encapsulation of package metadata.  Packages may be
  661. associated with configuration files.
  662.  
  663. =cut
  664.  
  665.  
  666. package pkg;
  667. use strict;
  668.  
  669.  
  670. =head2 new
  671.  
  672. This is the constructor for the class. It takes a number of optional
  673. parameters. If the parameter B<Colons> is present, then the output
  674. will be compact. The parameters B<DEBUG> and B<VERBOSE> turn on
  675. additional diagnostics from the script.
  676.  
  677. =cut
  678.  
  679. sub new {
  680.   my $this = shift;
  681.   my %params = @_;
  682.   my $class = ref($this) || $this;
  683.   my $self = {};
  684.  
  685.   die "Missing required parameter Name"
  686.     unless $params{Name};
  687.   $self->{Name} = $params{Name};
  688.  
  689.   bless $self => $class;
  690.  
  691.   return $self;
  692. }
  693.  
  694. sub list_files {
  695.   my $this   = shift;
  696.   return [];
  697. }
  698.  
  699. =head1 CLASS object_list
  700.  
  701. This is a clas which holds lists of object names, either packages or
  702. configuration file object names.  It provides methods to add, access,
  703. and remove objects, as well as an option to list all elements in the
  704. list.
  705.  
  706. =cut
  707.  
  708. package object_list;
  709. use strict;
  710.  
  711.  
  712.  
  713. =head2 new
  714.  
  715. This is the constructor for the class. It takes no arguments.
  716.  
  717. =cut
  718.  
  719. sub new {
  720.   my $this = shift;
  721.   my %params = @_;
  722.   my $class = ref($this) || $this;
  723.   my $self = {};
  724.  
  725.   $self->{"List"} = ();
  726.  
  727.   bless $self => $class;
  728.  
  729.   return $self;
  730. }
  731.  
  732. =head2 element
  733.  
  734. This is an accessor method for elements of the list. If an optional
  735. value argument exists, it creates or updates the element associtated
  736. with the vaslue. Takes in a required name, which is used as a kay, and
  737. an optional value argument. The value is returned.
  738.  
  739. =cut
  740.  
  741. sub element {
  742.   my $this      = shift;
  743.   my $name      = shift;
  744.   my $value     = shift;
  745.   
  746.   die "Missing required parameter Name"
  747.     unless $name;
  748.   if ($value) {
  749.     $this->{"List"}->{$name} =  $value;
  750.   }
  751.   if (exists $this->{"List"}->{$name}) {
  752.     return $this->{"List"}->{$name};
  753.   }
  754.   else {
  755.     return undef;
  756.   }
  757. }
  758.  
  759.  
  760. =head2 remove
  761.  
  762. Removes elements from the list.  Take in an required name, which is
  763. used as the key for the element to delete.
  764.  
  765. =cut
  766.  
  767. sub remove {
  768.   my $this      = shift;
  769.   my $name      = shift;
  770.   die "Missing required parameter Name"
  771.     unless $name;
  772.   delete $this->{"List"}->{$name}
  773.     if (exists $this->{"List"}->{$name} );
  774. }
  775.  
  776. =head2 list
  777.  
  778. This routine lists all the elements in the list.  It does not take any
  779. options.
  780.  
  781. =cut
  782.  
  783. sub list {
  784.   my $this      = shift;
  785.  
  786.   return keys %{$this->{"List"}};
  787. }
  788.  
  789. package main;
  790. use Getopt::Long;
  791.  
  792. sub main {
  793.   my $optdesc = ucf->Optdesc();
  794.   my $parser  = new Getopt::Long::Parser;
  795.   $parser->configure("bundling");
  796.   $parser->getoptions (%$optdesc);
  797.   my $query = ucf->new(%::ConfOpts);
  798.   $query->process;
  799.   $query->report;
  800. }
  801.  
  802. &main;
  803.  
  804. exit 0;
  805.  
  806. =head1 CAVEATS
  807.  
  808. This is very inchoate, at the moment, and needs testing.
  809.  
  810. =cut
  811.  
  812. =head1 BUGS
  813.  
  814. None Known so far.
  815.  
  816. =cut
  817.  
  818. =head1 AUTHOR
  819.  
  820. Manoj Srivastava <srivasta\@debian.org>
  821.  
  822. =head1 COPYRIGHT AND LICENSE
  823.  
  824. This script is a part of the Ucf package, and is 
  825.  
  826. Copyright (c) 2006 Manoj Srivastava <srivasta\@debian.org>
  827.  
  828. This program is free software; you can redistribute it and / or modify
  829. it under the terms of the GNU General Public License as published by
  830. the Free Software Foundation; either version 2 of the License, or
  831. (at your option) any later version.
  832.  
  833. This program is distributed in the hope that it will be useful,
  834. but WITHOUT ANY WARRANTY; without even the implied warranty of
  835. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  836. GNU General Public License for more details.
  837.  
  838. You should have received a copy of the GNU General Public License
  839. along with this program; if not, write to the Free Software
  840. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  841.  
  842. =cut
  843.  
  844. 1;
  845.  
  846. __END__
  847.